home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / WrapperInspector / Source / ImageView.h < prev    next >
Text File  |  1995-06-12  |  705b  |  30 lines

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    ImageView
  4. //
  5. //    Inherits From:        View
  6. //
  7. //    Declared In:        ImageView.h
  8. //
  9. //    Class Description
  10. //
  11. //        A simple view subclass used to composite eps and tiff files.
  12. //        
  13. //    Disclaimer
  14. //
  15. //        You may freely copy, distribute and reuse this software and its
  16. //        associated documentation. I disclaim any warranty of any kind, 
  17. //        expressed or implied, as to its fitness for any particular use.
  18. //
  19. //----------------------------------------------------------------------------------------------------
  20. #import <appkit/appkit.h>
  21.  
  22. @interface ImageView : View
  23. {
  24.     id    image;
  25. }
  26.  
  27. - image;
  28. - image: anImage;
  29.  
  30. @end